ClickOnce & CAS



RapidSpellDialog may be used in partial trust applications (Internet, and Intranet zone for example) provided it is licensed in the manner described below. RapidSpellAsYouType cannot be used in partial trust applications because it requires full trust for screen drawing.

Required Code Changes

The only requirement for using RapidSpellDialog under partial trust is that the control is licensed by calling these lines of code BEFORE the RapidSpellDialog control is instantiated, eg. the first line of the Form constructor.

//C#
Keyoti.RapidSpell.ComClientInteropSupport c = new
Keyoti.RapidSpell.ComClientInteropSupport();
c.Key = "<...place your license key here...>";

'VB
Dim c As New Keyoti.RapidSpell.ComClientInteropSupport()
c.Key = "<...place your license key here...>"